home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / libkb100.zip / LIBKB-1.00 / MAKE_WCC.BAT < prev    next >
DOS Batch File  |  1996-07-23  |  341b  |  15 lines

  1. @echo off
  2.  
  3. rem /* make_wcc.bat -- simple make driver for Watcom C
  4. rem  * Copyright (C) 1996 Markus F.X.J. Oberhumer
  5. rem  * For conditions of distribution and use, see copyright notice in kb.h 
  6. rem  */
  7.  
  8. md _wcc
  9. copy include\*.* _wcc
  10. copy src\*.* _wcc
  11. copy samples\*.* _wcc
  12. copy config\dos\*.* _wcc
  13. cd _wcc
  14. wmake -f makefile.wcc
  15.